home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 2003 May (DVD) / Macworld Resource DVD May 2003.toast / Data / Software / Bonus / Database / mysql-max-3.23.55.sit / mysql-max-3.23.55-apple-darwi.1 / mysql-test / t / rollback.test < prev    next >
Encoding:
Text File  |  2003-01-21  |  284 b   |  15 lines  |  [TEXT/ttxt]

  1. #
  2. # This test should fail as MyISAM doesn't have rollback
  3. #
  4.  
  5. drop table if exists t1;
  6.  
  7. create table t1 (n int not null primary key) type=myisam;
  8. begin work;
  9. insert into t1 values (4);
  10. insert into t1 values (5);
  11. # Should give an error
  12. !$1196 rollback;
  13. select * from t1;
  14. drop table t1;
  15.